翻訳と辞書
Words near each other
・ Ratková
・ Ratkuria
・ Ratla
・ Ratlam
・ Ratlam (Lok Sabha constituency)
・ Ratlam district
・ Ratlam Junction railway station
・ Ratlam Railway Colony
・ Ratlam State
・ Ratle Hydroelectric Plant
・ Ratley
・ Ratliff
・ Ratliff Boon
・ Ratliff City, Oklahoma
・ Ratliff Stadium
Rational Purify
・ Rational quadratic covariance function
・ Rational Quality Manager
・ Rational R1000
・ Rational reciprocity law
・ Rational reconstruction
・ Rational reconstruction (mathematics)
・ Rational Recovery
・ Rational representation
・ Rational Response Squad
・ Rational Rhapsody
・ Rational root theorem
・ Rational sequence topology
・ Rational series
・ Rational Service Tester for SOA Quality


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Rational Purify : ウィキペディア英語版
Rational Purify

Purify is a memory debugger program used by software developers to detect memory access errors in programs, especially those written in C or C++. It was originally written by Reed Hastings of Pure Software.〔(Purify: fast detection of memory leaks and access errors. ) by Reed Hastings and Bob Joyce, Usenix Winter 1992 technical conference.〕 Pure Software later merged with Atria Software to form Pure Atria Software, which in turn was later acquired by Rational Software, which in turn was acquired by IBM, and then divested to UNICOM Systems, Inc. on Dec 31, 2014. It is functionally similar to other memory debuggers, such as Insure++, Valgrind and BoundsChecker.
==Overview==
Purify allows dynamic verification, a process by which a program discovers errors that occur when the program runs, much like a debugger. Static verification or static code analysis, by contrast, involves detecting errors in the source code without ever compiling or running it, just by discovering logical inconsistencies. The type checking by a C compiler is an example of static verification.
When a program is linked with Purify, corrected verification code is automatically inserted into the executable by parsing and adding to the object code, including libraries. That way, if a memory error occurs, the program will print out the exact location of the error, the memory address involved, and other relevant information. Purify also detects memory leaks. By default, a leak report is generated at program exit but can also be generated by calling the Purify leak-detection API from within an instrumented application.
The errors that Purify discovers include array bounds reads and writes, trying to access unallocated memory, freeing unallocated memory (usually due to freeing the same memory for the second time), as well as memory leaks (allocated memory with no pointer reference). Most of these errors are not fatal (at least not at the site of the error), and often when just running the program there is no way to detect them, except by observing that ''something'' is wrong due to incorrect program behavior. Hence Purify helps by detecting these errors and telling the programmer exactly where they occur. Because Purify works by instrumenting all the object code, it detects errors that occur inside of third-party or operating system libraries. These errors are often caused by the programmer passing incorrect arguments to the library calls, or by misunderstandings about the protocols for freeing data structures used by the libraries. These are often the most difficult errors to find and fix.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Rational Purify」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.